home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-08-12 | 527 b | 32 lines |
- #!smake
- #
- # Copyright (c) Mark J. Kilgard, 1995, 1997.
- #
-
- TOP = ../..
- include $(TOP)/glutdefs
- include $(ROOT)/usr/include/make/commondefs
-
- LD_QUICKSTART_INFO=
- LN = ln -s
- MV = mv
- RM = -rm -rf
-
- TARGETS = perf_torus
-
- LLDLIBS = $(GLUT) -lGLU -lGL -lXmu -lXext -lX11 -lm
-
- SRCS = gl_harness.c torus.c
- OBJS = $(SRCS:.c=.o)
-
- LCOPTS = -I$(TOP)/include -fullwarn
- LWOFF = ,813,852,827,826
- LDIRT = *~ *.bak *.pure
-
- default : $(TARGETS)
-
- perf_torus: gl_harness.o torus.o
- $(CCF) -o $@ gl_harness.o torus.o $(LDLIBS)
-
- include $(COMMONRULES)
-